home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / text / Keymap.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  886 b   |  33 lines

  1. package javax.swing.text;
  2.  
  3. import javax.swing.Action;
  4. import javax.swing.KeyStroke;
  5.  
  6. public interface Keymap {
  7.    void addActionForKeyStroke(KeyStroke var1, Action var2);
  8.  
  9.    Action getAction(KeyStroke var1);
  10.  
  11.    Action[] getBoundActions();
  12.  
  13.    KeyStroke[] getBoundKeyStrokes();
  14.  
  15.    Action getDefaultAction();
  16.  
  17.    KeyStroke[] getKeyStrokesForAction(Action var1);
  18.  
  19.    String getName();
  20.  
  21.    Keymap getResolveParent();
  22.  
  23.    boolean isLocallyDefined(KeyStroke var1);
  24.  
  25.    void removeBindings();
  26.  
  27.    void removeKeyStrokeBinding(KeyStroke var1);
  28.  
  29.    void setDefaultAction(Action var1);
  30.  
  31.    void setResolveParent(Keymap var1);
  32. }
  33.